# coding:utf-8
"""
Use a Module
Now we can use the module we just created, by using the import statement:
Import the module named mymodule, and call the greeting function:
"""
import mymodule
mymodule.greeting("Jonathan")
#When using a function from a module,
# use the syntax: module_name.function_name.